home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / git-4.3 / git-4 / git-4.3.11 / info / Makefile.in < prev    next >
Encoding:
Makefile  |  1996-06-06  |  2.4 KB  |  95 lines

  1. ###
  2. ### Makefile for GNU Interactive Tools
  3. ###
  4.  
  5. ###
  6. ### Copyright (C) 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
  7. ###
  8. ### This program is  free software; you can  redistribute it and/or modify
  9. ### it under the terms  of the GNU General Public  License as published by
  10. ### the  Free Software Foundation; either version  2,  or (at your option)
  11. ### any later version.
  12. ### 
  13. ### This program is distributed  in the hope that  it will be  useful, but
  14. ### WITHOUT    ANY  WARRANTY;  without   even   the  implied  warranty  of
  15. ### MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR   PURPOSE.  See the GNU
  16. ### General Public License for more details.
  17. ### 
  18. ### You should  have received a  copy of  the GNU  General Public  License
  19. ### along with   this  program; if   not,  write  to   the Free   Software
  20. ### Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. ###
  22.  
  23.  
  24. PRODUCT        = "@PRODUCT@"
  25. VERSION        = "@VERSION@"
  26.  
  27.  
  28. srcdir        = @srcdir@
  29. VPATH        = @srcdir@
  30.  
  31. prefix        = @prefix@
  32. infodir        = $(prefix)/info
  33.  
  34. SHELL        = /bin/sh
  35. MAKEINFO    = @MAKEINFO@
  36. TEXI2DVI    = @TEXI2DVI@
  37. INSTALL        = @INSTALL@
  38. INSTALL_PROGRAM    = @INSTALL_PROGRAM@
  39. INSTALL_DATA    = @INSTALL_DATA@
  40. HOST        = @HOST@
  41.  
  42. all:
  43.  
  44. installdirs:
  45.     @$(srcdir)/../mkinstalldirs $(infodir)
  46.  
  47. info:    git.info git.info-1 git.info-2 git.info-3
  48.  
  49. git.info: $(srcdir)/git.texinfo
  50.     $(MAKEINFO) $(srcdir)/git.texinfo
  51.  
  52. git.info-1: $(srcdir)/git.texinfo
  53.     $(MAKEINFO) $(srcdir)/git.texinfo
  54.  
  55. git.info-2: $(srcdir)/git.texinfo
  56.     $(MAKEINFO) $(srcdir)/git.texinfo
  57.  
  58. git.info-3: $(srcdir)/git.texinfo
  59.     $(MAKEINFO) $(srcdir)/git.texinfo
  60.  
  61. dvi:    git.dvi
  62.  
  63. git.dvi: $(srcdir)/git.texinfo
  64.     $(TEXI2DVI) $(srcdir)/git.texinfo
  65.  
  66. install-strip: install
  67.  
  68. install: all install-only
  69.  
  70. install-only:
  71.     $(INSTALL_DATA) $(srcdir)/git.info   $(infodir)/git.info
  72.     $(INSTALL_DATA) $(srcdir)/git.info-1 $(infodir)/git.info-1
  73.     $(INSTALL_DATA) $(srcdir)/git.info-2 $(infodir)/git.info-2
  74.     $(INSTALL_DATA) $(srcdir)/git.info-3 $(infodir)/git.info-3
  75.  
  76. uninstall:
  77.     -cd $(infodir) && rm -f git.info*
  78.  
  79. clean:
  80.     -rm -f *~ *.bak core* tutu* gogu*
  81.     -rm -f git.fns git.cps git.fn git.dvi git.cps git.cp
  82.     -rm -f git.aux git.log git.toc git.tp git.vr git.vrs
  83.     -rm -f git.pg git.ky git.kys git.ps
  84.  
  85. mostlyclean: clean
  86.  
  87. distclean: clean
  88.     -rm -f Makefile config.status config.log config.cache
  89.  
  90. realclean: distclean
  91.  
  92. # Tell version [3.59,3.63) of GNU make not to export all variables.
  93. # Otherwise a system limit (for SysV at least) may be exceeded.
  94. .NOEXPORT:
  95.